home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / settimeofday.c,v < prev    next >
Text File  |  1988-11-07  |  3KB  |  137 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     88.11.07.14.43.30;  author douglis;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.06.21.17.25.12;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.31.59;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @allow NULL tp argument (apparently Unix does).
  32. @
  33. text
  34. @/* 
  35.  * settimeofday.c --
  36.  *
  37.  *    Procedure to map from Unix settimeofday system call to Sprite.
  38.  *
  39.  * Copyright 1986 Regents of the University of California
  40.  * All rights reserved.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/settimeofday.c,v 1.2 88/06/21 17:25:12 ouster Exp Locker: douglis $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include <sprite.h>
  48. #include <spriteTime.h>
  49.  
  50. #include "compatInt.h"
  51. #include <sys/time.h>
  52.  
  53.  
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * settimeofday --
  59.  *
  60.  *    Procedure to map from Unix settimeofday system call to 
  61.  *    Sprite Sys_SetTimeOfDay.
  62.  *
  63.  * Results:
  64.  *    UNIX_SUCCESS     - the call was successful.
  65.  *    UNIX_ERROR     - the call was not successful. 
  66.  *              The actual error code stored in errno.  
  67.  *
  68.  * Side effects:
  69.  *    None.
  70.  *
  71.  *----------------------------------------------------------------------
  72.  */
  73.  
  74. int
  75. settimeofday(tp, tzp)
  76.     struct timeval *tp;
  77.     struct timezone *tzp;
  78. {
  79.     ReturnStatus status;    /* result returned by Sys_SetTimeOfDay */
  80.  
  81.     /*
  82.      * Unix negates the local offset from UTC to make it positive
  83.      * for locations west of the prime meridian. 
  84.      */
  85.  
  86.     if (tzp == NULL) {
  87.     int localOffset;
  88.     Boolean DST;
  89.  
  90.     status = Sys_GetTimeOfDay((Time *) NULL, &localOffset, &DST);
  91.     status = Sys_SetTimeOfDay(tp, localOffset, DST);
  92.     } else if (tp == NULL) {
  93.     Time currentTime;
  94.  
  95.     status = Sys_GetTimeOfDay(¤tTime, (int *) NULL,
  96.                   (Boolean *) NULL);
  97.     status = Sys_SetTimeOfDay(¤tTime,  -(tzp->tz_minuteswest),
  98.                   tzp->tz_dsttime);
  99.     } else {
  100.     status = Sys_SetTimeOfDay(tp, -(tzp->tz_minuteswest), tzp->tz_dsttime);
  101.     }
  102.     if (status != SUCCESS) {
  103.     errno = Compat_MapCode(status);
  104.     return(UNIX_ERROR);
  105.     } else {
  106.     return(UNIX_SUCCESS);
  107.     }
  108. }
  109. @
  110.  
  111.  
  112. 1.2
  113. log
  114. @Various changes to make code compile under new library.
  115. @
  116. text
  117. @d11 1
  118. a11 1
  119. static char rcsid[] = "$Header: settimeofday.c,v 1.1 88/06/19 14:31:59 ouster Exp $ SPRITE (Berkeley)";
  120. d59 7
  121. @
  122.  
  123.  
  124. 1.1
  125. log
  126. @Initial revision
  127. @
  128. text
  129. @d11 1
  130. a11 1
  131. static char rcsid[] = "$Header: proto.c,v 1.1 86/03/04 16:46:31 douglis Exp $ SPRITE (Berkeley)";
  132. d14 2
  133. a15 2
  134. #include "sprite.h"
  135. #include "/sprite/lib/include/time.h"
  136. @
  137.